I'm having trouble understanding why this program skips through without waiting for the inputs to activate/deactivate.
The output commands activate the lamp as programmed but the "while" command lines act as if they are'nt even there.
I can see the inputs on the I/O screen and they change as I switch the switches. while this program is running they show as
"off" ("not checked" status)
When watching the console while this progam runs it looks like all console print commands go out all at the same time at the end instead of going out as they execute.
Any suggestions?
AZ
#include "KMotionDef.h"
void main()
{
// int i;
// for (i=0; i<10; i++)
// Punch
{
ClearBit(89);
ClearBit(90);
ClearBit(92);
Delay_sec(2);
SetBit(92);
printf("waiting for Punch go"); // send message to console
Delay_sec(2);
while (ReadBit(48)); //wait for Punch Go Sw
ClearBit(92);
Delay_sec(01);
printf("waiting for Punch run"); // send message to console
while (ReadBit(49)); //wait for Punch run Sw
SetBit(92);
printf("waiting for Tool PB"); // send message to console
Delay_sec(2);
while (ReadBit(50)); //wait for Tool Sw
ClearBit(92);
Delay_sec(0.5);
Delay_sec(0.2);
printf("Flash Tool light once"); // send message to console
SetBit(92);
Delay_sec(1.3);
ClearBit(92);
// Delay_sec(0.3);
// SetBit(92);
// Delay_sec(0.3);
// ClearBit(92);
// Delay_sec(0.3);
// SetBit(92);
// Delay_sec(0.3);
// ClearBit(92);
// Delay_sec(0.3);
// SetBit(92);
// Delay_sec(0.3);
// ClearBit(92);
// Delay_sec(0.3);
// SetBit(92);
// Delay_sec(0.3);
// ClearBit(92);
printf("Punch done\n"); // send message to console
}
}